home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / zimage2.c < prev    next >
C/C++ Source or Header  |  1996-04-25  |  5KB  |  162 lines

  1. /* Copyright (C) 1992, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zimage2.c */
  20. /* image operator extensions for Level 2 PostScript */
  21. #include "math_.h"
  22. #include "memory_.h"
  23. #include "ghost.h"
  24. #include "errors.h"
  25. #include "oper.h"
  26. #include "gscolor.h"
  27. #include "gscspace.h"
  28. #include "gscolor2.h"
  29. #include "gsmatrix.h"
  30. #include "gsimage.h"
  31. #include "idict.h"
  32. #include "idparam.h"
  33. #include "iimage.h"
  34. #include "ilevel.h"
  35. #include "igstate.h"        /* for igs */
  36.  
  37. /* Define a structure for acquiring image parameters. */
  38. typedef struct image_params_s {
  39.     gs_image_t image;
  40.     bool MultipleDataSources;
  41.     ref DataSource[4];
  42.     const float *pDecode;
  43. } image_params;
  44.  
  45. /* Common code for unpacking an image dictionary. */
  46. /* Assume *op is a dictionary. */
  47. private int
  48. image_dict_unpack(os_ptr op, image_params *pip, int max_bits_per_component)
  49. {    int code;
  50.     int num_components;
  51.     int decode_size;
  52.     ref *pds;
  53.  
  54.     check_dict_read(*op);
  55.     num_components =
  56.       gs_color_space_num_components(gs_currentcolorspace(igs));
  57.     if ( num_components < 1 )
  58.       return_error(e_rangecheck);        /* Pattern space not allowed */
  59.     if ( max_bits_per_component == 1 )    /* imagemask */
  60.       num_components = 1;            /* for Decode */
  61. #define pim (&pip->image)
  62.     if ( (code = dict_int_param(op, "ImageType", 1, 1, 1,
  63.                     &code)) < 0 ||
  64.          (code = dict_int_param(op, "Width", 0, 0x7fff, -1,
  65.                     &pim->Width)) < 0 ||
  66.          (code = dict_int_param(op, "Height", 0, 0x7fff, -1,
  67.                     &pim->Height)) < 0 ||
  68.          (code = dict_matrix_param(op, "ImageMatrix",
  69.                     &pim->ImageMatrix)) < 0 ||
  70.          (code = dict_bool_param(op, "MultipleDataSources", false,
  71.                     &pip->MultipleDataSources)) < 0 ||
  72.          (code = dict_int_param(op, "BitsPerComponent", 0,
  73.                     max_bits_per_component, -1,
  74.                     &pim->BitsPerComponent)) < 0 ||
  75.          (code = decode_size = dict_float_array_param(op, "Decode",
  76.                     num_components * 2,
  77.                     &pim->Decode[0], NULL)) < 0 ||
  78.          (code = dict_bool_param(op, "Interpolate", false,
  79.                     &pim->Interpolate)) < 0 ||
  80.          (code = dict_bool_param(op, "CombineWithColor", false,
  81.                     &pim->CombineWithColor)) < 0
  82.        )
  83.       return code;
  84.     if ( decode_size == 0 )
  85.       pip->pDecode = 0;
  86.     else if ( decode_size != num_components * 2 )
  87.       return_error(e_rangecheck);
  88.     else
  89.       pip->pDecode = &pim->Decode[0];
  90.     /* Extract and check the data sources. */
  91.     if ( (code = dict_find_string(op, "DataSource", &pds)) < 0 )
  92.       return code;
  93.     if ( pip->MultipleDataSources )
  94.     {    check_type_only(*pds, t_array);
  95.         if ( r_size(pds) != num_components )
  96.           return_error(e_rangecheck);
  97.         memcpy(&pip->DataSource[0], pds->value.refs, sizeof(ref) * num_components);
  98.     }
  99.     else
  100.       pip->DataSource[0] = *pds;
  101. #undef pim
  102.     return 0;
  103. }
  104.  
  105. /* (<width> <height> <bits/sample> <matrix> <datasrc> image -) */
  106. /* <dict> image - */
  107. private int
  108. z2image(register os_ptr op)
  109. {    if ( level2_enabled )
  110.     {    check_op(1);
  111.         if ( r_has_type(op, t_dictionary) )
  112.           {    image_params ip;
  113.             int code;
  114.  
  115.             gs_image_t_init_color(&ip.image);
  116.             code = image_dict_unpack(op, &ip, 12);
  117.             if ( code < 0 )
  118.               return code;
  119.             ip.image.ColorSpace = gs_currentcolorspace(igs);
  120.             return zimage_setup(&ip.image, ip.MultipleDataSources,
  121.                         &ip.DataSource[0], 1);
  122.           }
  123.     }
  124.     /* Level 1 image operator */
  125.     check_op(5);
  126.     return zimage(op);
  127. }
  128.  
  129. /* (<width> <height> <paint_1s> <matrix> <datasrc> imagemask -) */
  130. /* <dict> imagemask - */
  131. private int
  132. z2imagemask(register os_ptr op)
  133. {    if ( level2_enabled )
  134.     {    check_op(1);
  135.         if ( r_has_type(op, t_dictionary) )
  136.           {    image_params ip;
  137.             int code;
  138.  
  139.             gs_image_t_init_mask(&ip.image, false);
  140.             code = image_dict_unpack(op, &ip, 1);
  141.             if ( code < 0 )
  142.               return code;
  143.             if ( ip.MultipleDataSources )
  144.               return_error(e_rangecheck);
  145.             return zimage_setup(&ip.image, false,
  146.                         &ip.DataSource[0], 1);
  147.           }
  148.     }
  149.     /* Level 1 imagemask operator */
  150.     check_op(5);
  151.     return zimagemask(op);
  152. }
  153.  
  154. /* ------ Initialization procedure ------ */
  155.  
  156. /* Note that these override the definitions in zpaint.c. */
  157. BEGIN_OP_DEFS(zimage2_l2_op_defs) {
  158.         op_def_begin_level2(),
  159.     {"1image", z2image},
  160.     {"1imagemask", z2imagemask},
  161. END_OP_DEFS(0) }
  162.